From: Stefan Monnier Date: Tue, 20 Jan 2004 21:19:17 +0000 (+0000) Subject: (wait_reading_process_input): Lisp_Object/int mixup. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~24439 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=a60c450fb67bc6159d2b3fa051eebe63ec2d1be0;p=emacs.git (wait_reading_process_input): Lisp_Object/int mixup. --- diff --git a/src/process.c b/src/process.c index 315b31b728f..854607a2230 100644 --- a/src/process.c +++ b/src/process.c @@ -1,6 +1,6 @@ /* Asynchronous subprocess control for GNU Emacs. Copyright (C) 1985, 86, 87, 88, 93, 94, 95, 96, 98, 1999, - 2001, 2002, 2003 Free Software Foundation, Inc. + 2001, 2002, 2003, 2004 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -4296,7 +4296,7 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display) proc = chan_process[channel]; if (NILP (proc)) continue; - if (XPROCESS (proc)->read_output_delay > 0) + if (XINT (XPROCESS (proc)->read_output_delay) > 0) { check_delay--; if (NILP (XPROCESS (proc)->read_output_skip))